home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / remote / race150.zip / SAMPLE.Q-A < prev    next >
Text File  |  1991-11-02  |  2KB  |  53 lines

  1.  
  2. ; This is a sample questionnaire file intended ONLY as a visual
  3. ; example of how to set up two items that may be used with the
  4. ; RACE validation function.
  5. ;
  6. ; Obviously this questionnaire is far from a usable
  7. ; questionnaire though it does work.
  8.  
  9.  
  10. ClearScreen
  11. Display "||Street Address or Box Number : "
  12. Ask 60 1
  13.  
  14. Display "|City, State : "
  15. Ask 60 2
  16.  
  17. Display "|Home Phone : "
  18. Ask 15 3
  19.  
  20. Display "|Your BBS phone number : "
  21. Ask 15 4
  22.  
  23. Display "|Your Net/Node number(s) : "
  24. Ask 20 5
  25.  
  26. POSTINFO
  27. OutputAnswer "Address    : " 1
  28. OutputAnswer "City,St    : " 2
  29. OutputAnswer "H-Phone    : " 3
  30. OutputAnswer "SysNumber &: " 4
  31. OutputAnswer "Net/Node  &: " 5
  32.  
  33. ; Note that POSTINFO is the first item RemoteAccess will place in
  34. ; the questionnaire answer file.  This will provide the user name
  35. ; that RACE will need to locate and use the answers.
  36. ;
  37. ; The last two 'Outputanswer' items contain the '&:' mentioned in the
  38. ; RACE documentation.  This two character combination will signal RACE
  39. ; that all info after these characters is to be imported into the user
  40. ; record comment field when you upgrade this user.
  41. ;
  42. ; In the case of this example, the user's System (bbs) number and
  43. ; Net/node number would be imported.  The "SysNumber" and "Net/Node"
  44. ; text would not be imported into the comment field.  To do so, the
  45. ; two characters "&:" would have to be placed BEFORE the text, like so:
  46.  
  47. OutputAnswer "&:SysNumber " 4
  48. OutputAnswer "&:Net/Node " 5
  49.  
  50.  
  51.                             *** EOF ***
  52.  
  53.